home *** CD-ROM | disk | FTP | other *** search
/ JCSM Shareware Collection 1996 September / JCSM Shareware Collection (JCS Distribution) (September 1996).ISO / uother__ / storc1.zip / STORC.RME < prev    next >
Text File  |  1993-07-01  |  3KB  |  85 lines

  1. ************************* Welcome to STORC GOLD! *****************************
  2.  
  3. INSTALLATION
  4.         
  5.         -- To install: copy all source files from the diskette
  6.        or execute the self-extracting archive file storc1.exe
  7.         -- Destination directory
  8.            any directory in DOS path; for Windows 3.1 any
  9.            other directory will do too.
  10.  
  11. WHAT'S NEW
  12.  
  13.     This is a demo of new 'Gold' release of Storc. 
  14.  
  15.     It has following new features:
  16.  
  17.     -- font readings for the dialog box itself and individual controls
  18.     -- parent window/controls color readings(text foreground/background, 
  19.        background brush)
  20.     -- parent window menu and sysmenu readings
  21.     -- screen-related v.s. parent-related coordinates option for the 
  22.        dialog template
  23.     -- on-line help
  24.     -- support for VB 2.0
  25.         -- support for Visual C++/C8 MFC VBX controls
  26.  
  27.  
  28. WINDOWS 3.0
  29.  
  30.         -- you can run Storc under Windows 3.0 if you wish. However, the program
  31.            does not assume you will also compile the resulting script for 3.0.
  32.            If you will, make sure you turn the 'screen-related coordinates' 
  33.            option off, since it is not supported for Windows 3.0.
  34.         -- The help file storc.hlp requires Windows 3.1 help engine(winhelp.exe)
  35.  
  36.  
  37. MICROSOFT VISUAL C++/C8 VBX SUPPORT 
  38.  
  39.         -- Storc now can create CONTROL statements for VBX controls in format 
  40.            introduced by Visual C++/C8. This feature is on by default and is 
  41.            controlled by 'Native VBX' option on STORC menu. 
  42.  
  43.            All the VBX controls you are going to use should be installed in 
  44.        AppStudio first.
  45.  
  46.        Storc relies on APSTUDIO.INI    for information on VBX controls to use.
  47.        
  48.        Note, that AppStudio only supoprts VB 1.0 controls. Storc provides yet
  49.        another control class mapping mechanism for VBX controls.
  50.        [VBX MAP] section in storc.ini instructs storc to always substitute 
  51.        one control class for another; thus you can use a VB 1.0 control in 
  52.        place of a VB 2.0 control. You could also map a VB 2.0 control into 
  53.        a standard windows class, lick 'button' using class translation 
  54.        mechanism. 
  55.  
  56.            Here is general format of [VBX MAP] section:
  57.  
  58.            [VBX MAP]
  59.            Classname1=Classname2
  60.            .
  61.            .
  62.            .
  63.            ClassnameM=ClassnameN
  64.  
  65.                 where 
  66.        
  67.                 Classname1 is WINDOW CLASS NAME of the control window, with or 
  68.         without the 'Thunder' prefix, e.g.: 'ThunderSpinButton'
  69.         Classname2 is what you wnat to map it to (similar in format to 1)
  70.                 
  71.            
  72.            Storc will generate following CONTROL statement for control i:
  73.  
  74.            CONTROL "<vbxfileI.vbx>;<ControlIName>;<ControlText>",id,"VBControl", ...
  75.  
  76.                 where <ControlText> is real control text (as in original form),
  77.             e.g. 'spin1'
  78.  
  79.            This is the format required for proper initialization of CVBControl 
  80.            class object. Please refer to MFC documentation for more details.
  81.  
  82.  
  83.                   - End -
  84.  
  85.